home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / a-d / amms / mbbatch / com / fmail < prev    next >
Encoding:
Text File  |  1995-05-15  |  922 b   |  52 lines

  1. ;
  2. ;    NAME : FMAIL
  3. ;
  4. ;    VERSION : $VER: 1.07 / 15.05.1995
  5. ;
  6. ;    FUNKTION : Zeigt Privatfiles aus dem Privat-Filebrett an.
  7. ;
  8. ;    Diese Batchdatei benutzt folgende Befehle :
  9. ;    -------------------------------------------
  10. ;    ECHO
  11. ;    ON ERROR
  12. ;    FILES
  13. ;    CHECK FBOARD
  14. ;
  15. ;    Aufruf durch User : FMAIL
  16. ;
  17. ;    Konstanten :
  18. ;
  19. FBOARD=":System/Privat"            ; Name des Privat-Filebretts
  20.  
  21. ;
  22. ;       Programm :
  23. ;
  24.  
  25. ;    Texte einbinden
  26.  
  27. LANG={DEFLANGUAGE}
  28. _check file "mbbatch:com/'{ALANGUAGE}'/fmail.bat" GETTEXT
  29. LANG={ALANGUAGE}
  30. GETTEXT:
  31. _disk execute/keep "mbbatch:com/'LANG'/fmail.bat"
  32.  
  33. ;    Pruefe auf Privatfiles
  34.  
  35. _check fboard/all "'FBOARD'" NOFILE    ; Pruefe auf Privatfiles
  36.  
  37. ;    Privatfiles gefunden -> Privatfiles anzeigen
  38.  
  39. _files/Action=320 "'FBOARD'"        ; Privatfile anzeigen
  40. _echo T_End                ; Endtext ausgeben
  41. _goto END                ; -> Ende
  42.  
  43. ;    Keine privaten Files vorhanden
  44.  
  45. NOFILE:
  46. _echo T_NoFile                ; Keine File vorhanden ausgeben
  47.  
  48. ;    Ende
  49.  
  50. END:
  51. _eod                    ; Ende
  52.